home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / doors_2 / sread104.zip / SREAD.QES < prev   
Text File  |  1992-08-26  |  2KB  |  85 lines

  1. !
  2. ! SREAD Version 1.04 Sample Script File
  3. ! (C)opyright 1992 by D²Software
  4. !
  5.  
  6. ^LINESON
  7. ^LVL|1|9|$BAD_LEVEL
  8.  
  9. $MAIN
  10.    ; 
  11.    ;@X0B1: @X0ESelection for accessing our adult section
  12.    ;@X0B2: @X0CExit back to the system
  13.    ;
  14.    ^MUL|$ADULT|$EXIT
  15.    $BOUNCE
  16.    ;
  17.    ^CLS
  18.    ^JPP|$MAIN
  19.  
  20. $EXIT
  21.    ^END
  22.  
  23. $ADULT
  24.    ;
  25.    ;@X0FThis information is used to gain access to our adult section.
  26.    ;
  27.    ^JMP|$QRETURN|@FIRST@, are you 18 years of age or older?
  28.    ^GOSUB|$PERSONAL
  29.    ^GOSUB|$ADDRESS
  30.    ^JPP|$HAPPY
  31.  
  32. $HAPPY
  33.    ;
  34.    ^WRITEOFF
  35.    ^JMP|$QRETURN|@FIRST@, are you happy with your answers?
  36.    ^JPP|$QADJUST
  37.  
  38. $QADJUST
  39.    !
  40.    ! This routine is used if you want to reset the file pointer without
  41.    ! worrying about the details.
  42.    !
  43.    ;@X0CAnswer file updated.
  44.    ^ADJUST
  45.    ^WRITEON
  46.    ^JPP|$BOUNCE
  47.  
  48. $QRETURN
  49.    !
  50.    ! This routine is used to "force" a return from a subroutine!  This
  51.    ! will update the file pointer.
  52.    !
  53.    ;
  54.    ;@X0CAnswer file was not updated.
  55.    ^ABORT
  56.    ^WRITEON
  57.    ^JPP|$BOUNCE
  58.  
  59. $PERSONAL
  60.    ;
  61.    ;@X0B@FIRST@, we need to get your personal information.  This information is
  62.    ;@X0Bto cover our butts, and will remain totally confidential.  Failure to
  63.    ;@X0Bprovide this information will prevent you from having access to this
  64.    ;@X0Bsection.
  65.    ;
  66.    ^RETURN
  67.  
  68. $ADDRESS
  69.    \$$______________________
  70.    @X0EPlease enter your first name only:
  71.    @X0EPlease enter your last name only:
  72.    ;
  73.    %We need to know your street address.  You may include up to 5 lines.
  74.    %A blank line will end the data entry.
  75.    ^ASK|5
  76.    ^RETURN
  77.  
  78. $BAD_LEVEL
  79.    ;Sorry @FIRST@, you can't do this script.
  80.    ;
  81.    ^PAUSE
  82.    ^END
  83.  
  84.  
  85.